home *** CD-ROM | disk | FTP | other *** search
- /**
- GRAB Graph Layout and Browser System
-
- Copyright (c) 1989, Tera Computer Company
- **/
-
- /* A view of the window (buttons, text, graph) */
-
- #ifndef winview_h
- #define winview_h
-
- #include <InterViews/scene.h>
- #include <InterViews/box.h>
-
- class ButtonView;
- class GView;
- class TextView;
-
- class GrabWindow : public VBox
- {
- public:
- GrabWindow(GView*, TextView*);
- private:
- friend class GraphFrame;
-
- ButtonView* bview;
- GView* gview;
- TextView* tview;
- void Init();
- };
-
- #endif
-